Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633452 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/15 - Joke Generator

font/ cody/swapnilsparsh/30DaysOfJavaScript/15 - Joke Generator/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/15 - Joke Generator/assets/
    1 Items
  • joke.png
  • style.css cody/swapnilsparsh/30DaysOfJavaScript/15 - Joke Generator/style.css
    109 Views
    0 Comments
    * {
    padding: 0;
    margin: 0;
    font-family: "sans";
    box-sizing: border-box;
    }

    @font-face {
    index.html cody/swapnilsparsh/30DaysOfJavaScript/15 - Joke Generator/index.html
    329 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <link rel="shortcut icon" href="assets/joke.png" type="image/x-icon">
    script.js cody/swapnilsparsh/30DaysOfJavaScript/15 - Joke Generator/script.js
    118 Views
    0 Comments
    const jokeContainer = document.getElementById('jokeContainer');
    const getJokeBtn = document.getElementById('getJokeBtn');

    const API_URL = `https://v2.jokeapi.dev/joke/Any?type=single`;

    getJoke();

    async function getJoke() {